home *** CD-ROM | disk | FTP | other *** search
/ BigMax 6 / BigMax nº 6 [rebuilt].iso / DEMOS / PINKDEMO / PTPDEMO.DXR / 00206_AVbtn1.ls < prev    next >
Encoding:
Text File  |  1997-03-06  |  781 b   |  26 lines

  1. on mouseDown
  2.   global SoundTrack, VidTrack, VTV, VTH, pressed, speechstarted
  3.   set dump to the member of sprite VidTrack
  4.   unloadMember(dump)
  5.   set pressed to "yes"
  6.   set track to "Vid"
  7.   startTimer()
  8.   repeat with i = 10 to 15
  9.     if rollOver(i) and (the mouseCast <> 208) then
  10.       checkforvisible(i)
  11.       put i - 9 after track
  12.       if soundBusy(SoundTrack - 1) then
  13.         sound stop SoundTrack - 1
  14.       end if
  15.       set the member of sprite VidTrack to member track
  16.       set the locV of sprite VidTrack to VTV
  17.       set the locH of sprite VidTrack to VTH
  18.       set the visible of sprite VidTrack to 1
  19.       set the directToStage of member track to 1
  20.       set the movieRate of sprite VidTrack to 1
  21.       set pressed to track
  22.       exit repeat
  23.     end if
  24.   end repeat
  25. end
  26.